
/*---------------------------------------------------------通用CSS开始----------------------------------------------- */
@charset "utf-8";
/* ------------------------------------全局定义---------------------------------------- */

/* 将具有默认margin和padding的标记置零，所有标记的margin、padding都在使用时具体定义 */
* {
	margin:0;
	padding:0;
}
/* 修正IE5.x和IE6的斜体溢出bug */

* html iframe, * html frame {
	overflow:auto;
}
* html frameset {
	overflow:hidden;
}
/* 常用标签，基本标签默认样式取消，HTML标签，取消基本标签默认样式，防止不同浏览器显示效果不同，text-align:center; 解决不同浏览器居中问题 */
body {
	color:#636363;
	background:#FFF;
	font-size:12px;
	font-family:"STHeiti Light [STXihei]", Arial, sans-serif, "Times New Roman", 宋体;
	text-align:center;
}
body, ul, ol, li, p, h1, h2, h3, h4, h5, h6, h7, form, fieldset, table, td, img, div, tr {
	margin:0;
	padding:0;
}
input, select {
	font-size:12px;
	vertical-align:middle;
}
p {
	line-height:18px;
	padding:5px 0;
}
/* 设置内容左对齐，恢复因BODY设置剧中产生的继承 */
body div {
	text-align:left;
}
/* 标签属性，textarea,input 强制输入时内容超出时换行 */
textarea, input {
	word-wrap:break-word;
	word-break:break-all;
	padding:0px;
}
/* 清除ul列表标记的样式，ul列表更多的用在不需要列表前置符号的样式里 */
li {
	list-style-type:none;
}
/* 定义图片边框，当图片作为链接内容被填充时，会有默认边框出现，重定义掉 */
img {
	border:0 none;
}
/* 定义默认的链接样式，仅仅是作为默认样式提供，可以在各自的实例中覆盖掉 */
a:link, a:visited {
	color: rgb(204, 0, 0);
	text-decoration:none;
}
a:hover {
	color:#17408C;
	text-decoration:underline;
}
/* 去掉链接的虚线框 */
a {
	outline:none;
star:expression(this.onFocus=this.blur());
}
/* 定义H系列标签，覆盖H系列标签默认属性 */
h1 {
	font-size:24px;
	text-indent:0.5em;
}
h2 {
	font-size:22px;
	text-indent:0.5em;
}
h3 {
	font-size:20px;
	text-indent:0.5em;
}
h4 {
	font-size:18px;
	text-indent:0.5em;
}
h5 {
	font-size:16px;
	text-indent:0.5em;
}
h6 {
	font-size:14px;
	text-indent:0.5em;
}
/* ------------------------------------通用属性定义---------------------------------------- */

/* 鼠标样式 */
.pointer {
	cursor:pointer;
}
/* 取消边框 */
.noBorder {
	border:0 none;
}
/* 文本对齐方式 */
.alignL {
	text-align:left;
}
.alignC {
	text-align:center;
}
.alignR {
	text-align:right;
}
/* 字母和单词换行设置，强制内容换行，强制内容不换行 */
.break {
	word-break:break-all;
	word-wrap:break-word;
}
.noBreak {
	word-break:keep-all;
	word-wrap:normal;
}
/* 定义链接文本下划线 */
a.textUnderline {
	text-decoration:underline;
}
a.textNoline {
	text-decoration:none;
}
/* 定位关系 */
.absolute {
	position:absolute;
}
.relative {
	position:relative;
}
/* ul列表 */
.ulFloatL li {
	margin-bottom:10px
}
.dlFloatL dd {
	float:left;
	padding:0 5px;
}
.ulFloatL-d {
	margin-top:0px;
}
.ulFloatL-d li, .dlFloatL-d dd {
background:url(/image/dot3-3.jpg) no-repeat 2px 7px;
	padding-left:8px;
	margin-top:5px
}
.ulFloatL-d6 li, .dlFloatL-d6 dd {
background:url(/image/dot3-3.jpg) no-repeat 14px 10px;
	padding-left:22px;
	color:#910023;
}
.ulFloatL-d6 a.fcolor0051 {
	color:#910023;
}
.ulFloatL-d5 li, .dlFloatL-d5 dd {
	float:left;
	width:160px;
background:url(/image/dot3-3.jpg) no-repeat 2px 10px;;
	padding-left:8px;
}
.ulFloatL-d2 li, .dlFloatL-d2 dd {
background:url(/image/dot3-3.jpg) no-repeat 45px 10px;
	padding-left:50px;
}
.ulFloatL-d3 li {
background:url(/image/dot3-3.jpg) no-repeat 120px 10px;
	padding-left:130px;
}
.ulFloatL-d3 li {
	font-size:14px;
}
.ulFloatL-d4 li {
background:url(/image/dot3-3.jpg) no-repeat 2px 10px;
	padding-left:8px;
}
.dlFloatL dt, .dlFloatL dd, .dlFloatL-d dt, .ulNoFloat li {
	width:100%;
	overflow:hidden;
}
.ulFloatR li {
	float:right;
}
/* 浮动定义 */
.floatL {
	float:left;
}
/* ------------------------------------通用容器定义---------------------------------------- */

/* 容器 */
.wrapper {
	clear:both;
	overflow:hidden;
}
/* 隐藏元素，当元素内容内容超出元素height 或 width 时，隐藏之 */
.overHidden {
	overflow:hidden;
}
/*
* 隐藏元素，visibility可以隐藏元素，但是还是会在布局中占位 */
.invisible {
	visibility:hidden;
}
/* 从页面布局上隐藏元素，从布局上隐藏元素 */
.hidden {
	display:none;
}
.block {
	display:block;
}
/* ------------------------------------清理元素--------------------------------------- */

/* 清理浮动元素,当浮动换行时后面元素不希望浮动，添加此属性，防止IE BUG */
.clear:after { /*/*/
	content: "."; /* IE8 hack */
	display: block;
	height: 0;
	clear: both;
	visibility: hidden;
}
.clear {
	display: inline-block;
}
* html .clear {
	height: 1%;
}
.clear {
	display: block;
}
/* ------------------------------------常用样式定义---------------------------------------- */


/* 宽度定义 */
.W1024, .W960, .W760, .W160, .W780, .W800 {
	margin:0 auto;
}
.W1024 {
	width:1024px;
}
.W960 {
	width:960px;
}
.W160 {
	width:160px;
}
.W760 {
	width:760px;
}
.W800 {
	width:800px;
}
.W780 {
	width:768px;
}
/* 颜色功能定义 */
.colorRed {
	color:#F00;
}
.colorWhite {
	color:#FFF;
}
.colorGreen {
	color:#0F0;
}
.colorGrey {
	color:#666;
}
.colorBlue {
	color:#00F;
}
.colorBlack {
	color:#000;
}
/* 定义某个项目常用颜色 fcolor+ 字体颜色, bcolor+ 背景颜色*/
.fcolor001 {
	color:#17408C;
}
.fcolor002 {
	color:#4A6EA9;
}
.fcolor003 {
	color:#8C8C8B;
}
.fcolor004 {
	color:#4B4B4B;
}
.fcolor005 {
	color:#3E3A39;
}
a.fcolor0051 {
	color:#910023;
}
.fcolor006 {
	color:#727171;
}
.fcolor007 {
	color:#617BB1;
}
.fcolor008 {
	color:#A7B2C4;
}
.fcolor009 {
	color:#819AC2;
}
a.acolor001 {
	color:#617BB1;
}
a.acolor002 {
	color:#808080;
}
a.acolor003 {
	color:#4A6EA9;
}
a.acolor004 {
	color:#17408C;
}
a.acolor005 {
	color:#819AC2;
}
a.acolor006 {
	color:#960023;
}
.bcolor001 {
	background-color:#E9E9E9;
}
.bcolor002 {
	background-color:#9FB1CF;
}
.bcolor003 {
	background-color:#EAEAEA;
}
.bcolor004 {
	background-color:#4B4B4B;
}
/* 字体样式 */
.fontB {
	font-weight:bold;
}
.fontN {
	font-weight:normal;
}
.fontI {
	font-style:italic;
}
/* 字体大小 */
.font10 {
	font-size:10px;
}
.font14 {
	font-size:11px;
}
.font12 {
	font-size:12px;
}
.font13 {
	font-size:13px;
}
.font14 {
	font-size:14px;
}
.font16 {
	font-size:16px;
}
.font18 {
	font-size:18px;
}
/* 定义间距,上下2个DIV间距，用divH开头。上下DIV有间距时使用,尽量不使用margin/padding值,防止不同浏览器出现BUG。使用下面属性可兼容大多浏览器。*/
.divH1, .divH5, .divH10, .divH15, .divH20, .divH25, .divH30, divH1, .divH40 {
	width:100%;
	overflow:hidden;
}
.divH1 {
	height:1px;
}
.divH5 {
	height:5px;
}
.divH8 {
	height:8px;
}
.divH10 {
	height:10px;
}
.divH15 {
	height:15px;
}
.divH20 {
	height:20px;
}
.divH25 {
	height:25px;
}
.divH30 {
	height:30px;
}
.divH40 {
	height:40px;
}
/* 定义行高，lineH 使用较少,主要定义line-height属性 */
.lineH1 {
	line-height:1px;
}
.lineH10 {
	line-height:10px;
}
.lineH15 {
	line-height:15px;
}
.lineH18 {
	line-height:18px;
}
.lineH20 {
	line-height:20px;
}
.lineH25 {
	line-height:25px;
}
.lineH30 {
	line-height:30px;
}
.lineH35 {
	line-height:35px;
}
/* 标题样式定义 PTitle 在定义p标签元素或其它元素时,需要同时定义行高和高度,一般使用在标题显示中. */

.pTitle25, .pTitle20, .pTitle18, .pTitle30, .pTitle, .pTitle1, .pTitle22 {
	width:100%;
	overflow:hidden;
}
.pTitle30 {
	line-height:30px;
	height:30px;
}
.pTitle25 {
	line-height:25px;
	height:25px;
}
.pTitle22 {
	line-height:22px;
	height:22px;
}
.pTitle20 {
	line-height:20px;
	height:20px;
}
.pTitle18 {
	line-height:18px;
	height:18px;
}
.pTitle15 {
	line-height:15px;
	height:15px;
}
.pTitle10 {
	line-height:10px;
	height:10px;
}
.pTitle1 {
	line-height:1px;
	height:1px;
}
.pTitle {
	width:100%;
}
/* 更多样式设计 MORE 显示在右侧更多/MORE样式,可根据需求扩展 */

.more {
	text-align:right;
	position:absolute;
	top:0;
	right:3px;
}
.moreR5 {
	position:absolute;
	top:0px;
	right:5px;
	font:12px normal;
}
.moreR15 {
	position:absolute;
	top:0px;
	right:15px;
	font:12px normal;
}
/* 普通列表样式定义，文章列表样，一般列表使用,ul li列表 */
.artileList, .artileList25, .artileList22, .artileList24 {
	width:100%;
	overflow:hidden;
	margin:0 auto;
}
.artileList li {
	width:100%;
	height:20px;
	line-height:20px;
	overflow:hidden;
}
.artileList24 li {
	width:100%;
	height:24px;
	line-height:24px;
	overflow:hidden;
}
.artileList28 li {
	width:100%;
	height:28px;
	line-height:28px;
	overflow:hidden;
}
.artileList36 li {
	width:100%;
	height:36px;
	line-height:36px;
	overflow:hidden;
}
/*----------------------------------------------------------------通用CSS结束----------------------------------------- */
.Manueb {
	height:50px;
	margin:0 auto;
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#595C64', endColorstr='#1B1B1C');
	background: -webkit-linear-gradient(top, #595C64, #1B1B1C);
	background:-moz-linear-gradient(top, #595C64, #1B1B1C); 
	background: -o-linear-gradient(top, #595C64, #1B1B1C);
	background: -ms-linear-gradient(top, #595C64, #1B1B1C);
	background: linear-gradient(top, #595C64, #1B1B1C);
	text-align:center;
}
.Manues {
	margin:0 auto;
	border:0px solid green;
	height:50px;
	width:960px;
}
.manuestyle li {
	float:left;
	line-height:50px;
}
.manuestyle li a:hover {
	text-decoration:none;
}
.manuestyle li b {
	color:#FFF;
}
.manuestyle li a span {
	width:107px;
	display:block;
	font-size:14px;
	text-align:center;
}
.manuestyle li ul {
	position:absolute;
	display:none;
	width:100px;
	height:200px;
	border-left:1px solid #c3c3c3;
	border-right:1px solid #c3c3c3;
	border-bottom:1px solid #c3c3c3;
	border-top:none;
	z-index:20;
	background:white;
}
.manuestyle li ul li a span {
	display:block;
	width:100px;
}
.manuestyle li ul li a span:hover {
	color: white;
	background: #5f6166;
	_background: #910023;
}
.aboutinfinova {
	width:505px;
	border-left-style:none;
	border-right-style:none;
	border-bottom-style:none;
	border-top:3px solid #910023;
}
.aboutinfinova div {
	margin-right:30px;
	_margin-right:20px;
	float:left;
	width:95px;
	height:195px;
}
.aboutinfinova span {
	color:#5765a6;
	margin-bottom:5px;
	margin-top:15px;
}
.aboutinfinova ol li {
	margin-left:0px;
	width:95px;
	text-align:center;
	color:#4a4c49;
	_height:30px;
}
.aboutinfinova ol li a {
	_height:20px;
	display:block;
	width:95px;
}
.aboutinfinova ol li a:hover {
	background:#910023;
	color:white;
}
.IMG {
	margin-top:10px;
	margin-left:15px;
}
.Products {
	width:960px;
	height:245px;
	border-left-style:none;
	border-right-style:none;
	border-bottom-style:none;
	border-top:3px solid #d399a7;
 *background:url("/image/productbg.png") repeat left top;
	background:url("/image/productbg7.png") repeat left top;
}
.Products div {
	float:left;
}
.Product1 {
}
.Product1 div {
	float:left;
	width:182px;
	margin-left:10px;
	_margin-left:8px;
}
.Product1 div b, .Product2 div b {
	display:block;
	margin-top:10px;
}
.Product1 div ol li {
	width:180px;
	_width:160px;
	height:18px;
	line-height:18px;
}
.Product1 ol li a {
	display:block;
	height:18px;
	margin-left:10px;
	color:#333;
}
.Product1 ol li img {
	position:absolute;
	margin-top:5px;
	margin-right:35px;
 *margin-left:-10px;
}
.Product1 div ol li a:hover {
	color:white;
	background:#5f6166;
	_background:#5f6166;
}
.Product1 div ol li:hover {
	background:#FFF;
	_background:#FFF;
}
.Product2 {
	width:185px;
	_width:175px;
}
.Product2 div {
	float:none;
	_float:none;
	margin-left:10px;
	_margin-left:10px;
}
.Product2 div ol li {
	width:178px;
 _ width:180px;
	height:18px;
	line-height:18px;
}
.Product2 div ol li a {
	display:block;
	height:18px;
	margin-left:10px;
	color:#333;
}
.Product2 div ol li a:hover {
	color:white;
	background:#910023;
	_background:#910023;
}
.Product2 div ol li:hover {
	background:#910023;
}
.Product2 ol li img {
	position:absolute;
	margin-top:5px;
	margin-right:35px;
 *margin-left:-10px;
}
.Prolists {
	width:180px;
}
.Solution {
	border-left-style:none;
	border-right-style:none;
	border-bottom-style:none;
	border-top:3px solid #910023;
	width:960px;
}
.Solution div {
	margin-right:10px;
	_margin-right:17px;
	margin-left:10px;
	float:left;
	border:0px solid red;
	width:100px;
	height:100px;
}
.Solution ol {
	margin-left:5px;
}
.Solution ol li {
	width:168px;
	margin:0;
	margin-top:-5px;
	_font-size:12px;
 _ margin-top:5px;
}
.Solution span, .Solution h4 {
	font-weight:normal;
	font-size:14px;
	color:#5765a6;
	margin-bottom:5px;
	margin-top:15px;
}
.Solution ol li:hover {
	background:#910023;
}
.Solution ol li a:hover, .support ol li a:hover {
	color:white;
	text-decoration:none;
	_background:#910023;
}
.Userlist a {
	color:#2c419a;
	margin-left:9px
}
.support ol li a, .Solution ol li a {
	display:block;
}
.support {
	border-left-style:none;
	border-right-style:none;
	border-bottom-style:none;
	border-top:3px solid #d399a7;
	width:310px;
}

.support div {
	margin-top:10px;
	float:left;
	height:auto;
	margin-left:8px;
}
.support1 {
	width:167px;
}
.support2 {
	width:127px;
	_width:110px;
}
.suggetion a {
	display:block;
	margin-left:10px;
	color:#2c419a;
	font-size:14px;
}
.support ol {
	margin-left:-5px;
}
.support ol li {
	width:120px;
	_width:110px;
	_font-size:12px;
 _ margin-top:10px;
}
.support span {
	margin-left:5px;
	color:#5765a6;
}
.support img {
	margin-left:10px;
}
.support ol li:hover {
	background:#910023;
}
.contact {
	border-left-style:none;
	border-right-style:none;
	border-bottom-style:none;
	border-top:3px solid #910023;
	_position:absolute;
	width:655px;
	_width:675px;
	_margin-left:-20px;
}
.contact div {
	float:left;
	width:145px;
	height:150px;
	border:0px solid red;
	margin-left:20px;
	margin-top:18px;
}
.contact div span {
	color:#5765a6;
}
.region {
	border:0px solid red;
}
.region a {
	color:#b1b3b0;
	text-decoration:underline;
	margin-right:40px;
 *margin-right:35px;
}
